home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / mail / pine3.96.tar.gz / pine3.96.tar / pine3.96 / pine / osdep / windlg.h < prev    next >
Text File  |  1996-03-13  |  596b  |  21 lines

  1.  
  2.  
  3. /*----------------------------------------------------------------------------
  4.  
  5.     Common includes for custom dialogs.
  6.         
  7.     ( This file included by os-win.h and os-wnt.h)
  8.  
  9. */
  10.  
  11. typedef    struct DLG_SORTPARAM {
  12.     int        rval;        /* Return value. */
  13.     int        reverse;    /* Indicates a reversed sort. */
  14.     int        cursort;    /* Current sort (pineid). */
  15.     char    **helptext;    /* Pointer to help text. */
  16.     int        sortcount;    /* Number of different sorts. */
  17.     struct sorttypemap *types;  /* Pointer to array of conversion between
  18.                  * the pine sort types and the radio button
  19.                  * ids. */
  20. } DLG_SORTPARAM;
  21.